home *** CD-ROM | disk | FTP | other *** search
/ Red Eye Press Kit / Red Eye Press Kit.iso / pc / main.dxr / SCRIPTS_18_goDownload.ls < prev    next >
Encoding:
Text File  |  2005-07-18  |  324 b   |  16 lines

  1. property goMarker
  2. global downloadList
  3.  
  4. on getPropertyDescriptionList
  5.   description = [:]
  6.   addProp(description, #goMarker, [#default: 1, #format: #marker, #comment: "go to marker:"])
  7.   return description
  8. end
  9.  
  10. on mouseUp me
  11.   if downloadList.count <> 0 then
  12.     sendAllSprites(#backgroundImage)
  13.     go(goMarker)
  14.   end if
  15. end
  16.